var testing.matchList

9 uses

	testing (current package)
		testing.go#L464: 	matchList = flag.String("test.list", "", "list tests, examples, and benchmarks matching `regexp` then exit")
		testing.go#L497: 	matchList            *string
		testing.go#L2407: 	if *matchList != "" {
		testing.go#L2510: 	if _, err := matchString(*matchList, "non-empty"); err != nil {
		testing.go#L2511: 		fmt.Fprintf(os.Stderr, "testing: invalid regexp in -test.list (%q): %s\n", *matchList, err)
		testing.go#L2516: 		if ok, _ := matchString(*matchList, test.Name); ok {
		testing.go#L2521: 		if ok, _ := matchString(*matchList, bench.Name); ok {
		testing.go#L2526: 		if ok, _ := matchString(*matchList, fuzzTarget.Name); ok {
		testing.go#L2531: 		if ok, _ := matchString(*matchList, example.Name); ok {